home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9202.ARJ / 1002096B < prev    next >
Text File  |  1992-06-02  |  200b  |  14 lines

  1.  
  2.  
  3. /*
  4.         LISTER: a subfunction to link to recursive main for
  5.                 listing wildcard file matches.
  6. */
  7.  
  8. #include <stdio.h>
  9.  
  10. void subfunc(char *path)
  11. {
  12. printf("\n%s", path);
  13. }
  14.